home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib7 / v_09_01 / 9n01048b < prev    next >
Encoding:
Text File  |  1995-11-01  |  172 b   |  16 lines

  1.  
  2.  
  3.                                 Listing 2
  4.                         A K&R and ANSI Header File
  5.  
  6. #ifdef ANSI
  7.  
  8. int func1(int i);
  9.  
  10. #else
  11.  
  12. int func1();
  13.  
  14. #endif
  15.  
  16.